home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 35 / The Games Machine - Ita - CD-ROM Vol.35 / dkedemo it.iso / ALEXDEMO / DATA.Z / MHYDAS1.AI < prev    next >
Encoding:
Text File  |  1997-07-10  |  525 b   |  36 lines

  1. ' 0
  2. ' Macedonian A/I
  3. HydaspesAI
  4. {
  5.     import "basicman.ai";
  6.  
  7.     Conditions
  8.     {
  9.         var alexFirstMove, antigenesFirstMove, coenusFirstMove, tauronFirstMove;
  10.  
  11.         alexFirstMove = True;
  12.         antigenesFirstMove = True;
  13.         coenusFirstMove = True;
  14.         tauronFirstMove = True;
  15.     };
  16.  
  17.     Orders for Alexander
  18.     {
  19.        alexFirstMove Beserk();
  20.     };
  21.  
  22.     Orders for Antigenes
  23.     {
  24.         antigenesFirstMove Beserk();
  25.     };
  26.  
  27.     Orders for Coenus
  28.     {
  29.         coenusFirstMove Beserk();
  30.     };
  31.  
  32.     Orders for Tauron
  33.     {
  34.        tauronFirstMove Beserk();
  35.     };
  36. }